func runtime.hasPrefix

10 uses

	runtime (current package)
		panic.go#L56: 	if goarch.IsWasm == 0 && hasPrefix(funcname(findfunc(pc)), "runtime.") {
		preempt.go#L419: 	if hasPrefix(name, "runtime.") ||
		preempt.go#L420: 		hasPrefix(name, "runtime/internal/") ||
		preempt.go#L421: 		hasPrefix(name, "reflect.") {
		proc.go#L677: 			if hasPrefix(s, prefix) {
		proc.go#L4916: 			if hasPrefix(funcname(f), "runtime/internal/atomic") {
		security_unix.go#L35: 		if hasPrefix(envs[i], "GOTRACEBACK=") {
		string.go#L344: func hasPrefix(s, prefix string) bool {
		traceback.go#L1155: 	return bytealg.IndexByteString(name, '.') >= 0 && (!hasPrefix(name, "runtime.") || isExportedRuntime(name))
		traceback.go#L1333: 	return hasPrefix(funcname(f), "runtime.")